home *** CD-ROM | disk | FTP | other *** search
- /* Prototypes for functions defined in Modules/cmathmodule.c */
-
- static Py_complex c_acos(Py_complex x);
- static Py_complex c_acosh(Py_complex x);
- static Py_complex c_asin(Py_complex x);
- static Py_complex c_asinh(Py_complex x);
- static Py_complex c_atan(Py_complex x);
- static Py_complex c_atanh(Py_complex x);
- static Py_complex c_cos(Py_complex x);
- static Py_complex c_cosh(Py_complex x);
- static Py_complex c_exp(Py_complex x);
- static Py_complex c_log(Py_complex x);
- static Py_complex c_log10(Py_complex x);
- static Py_complex c_prodi(Py_complex x);
- static Py_complex c_sin(Py_complex x);
- static Py_complex c_sinh(Py_complex x);
- static Py_complex c_sqrt(Py_complex x);
- static Py_complex c_tan(Py_complex x);
- static Py_complex c_tanh(Py_complex x);
- static PyObject * math_error(void);
- static PyObject * math_1(PyObject * args,Py_complex (* func)(Py_complex ));
- static PyObject * cmath_acos(PyObject * self,PyObject * args);
- static PyObject * cmath_acosh(PyObject * self,PyObject * args);
- static PyObject * cmath_asin(PyObject * self,PyObject * args);
- static PyObject * cmath_asinh(PyObject * self,PyObject * args);
- static PyObject * cmath_atan(PyObject * self,PyObject * args);
- static PyObject * cmath_atanh(PyObject * self,PyObject * args);
- static PyObject * cmath_cos(PyObject * self,PyObject * args);
- static PyObject * cmath_cosh(PyObject * self,PyObject * args);
- static PyObject * cmath_exp(PyObject * self,PyObject * args);
- static PyObject * cmath_log(PyObject * self,PyObject * args);
- static PyObject * cmath_log10(PyObject * self,PyObject * args);
- static PyObject * cmath_sin(PyObject * self,PyObject * args);
- static PyObject * cmath_sinh(PyObject * self,PyObject * args);
- static PyObject * cmath_sqrt(PyObject * self,PyObject * args);
- static PyObject * cmath_tan(PyObject * self,PyObject * args);
- static PyObject * cmath_tanh(PyObject * self,PyObject * args);
-